Skip to content

Commit

Permalink
bump v (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
royshil authored Jun 26, 2023
1 parent 99e67cb commit a4d365f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")

project(
obs-backgroundremoval
VERSION 1.0.2
VERSION 1.0.3
LANGUAGES C CXX)
add_library(${CMAKE_PROJECT_NAME} MODULE)

set(PLUGIN_AUTHOR "Roy Shilkrot")
set(PLUGIN_PRETTY_NAME "OBS Background Removal plugin")
set(MACOS_BUNDLEID "com.royshilkrot.obs-backgroundremoval")
set(LINUX_MAINTAINER_EMAIL "[email protected]")
set(PLUGIN_HOME_URL "https://github.com/royshil/obs-backgroundremoval")

target_sources(
${CMAKE_PROJECT_NAME}
Expand Down
2 changes: 1 addition & 1 deletion buildspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@
}
},
"name": "obs-backgroundremoval",
"version": "1.0.2"
"version": "1.0.3"
}
2 changes: 1 addition & 1 deletion cmake/bundle/windows/installer-Windows.iss.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define MyAppName "@CMAKE_PROJECT_NAME@"
#define MyAppVersion "@CMAKE_PROJECT_VERSION@"
#define MyAppPublisher "@PLUGIN_AUTHOR@"
#define MyAppURL "https://github.com/royshil/obs-backgroundremoval"
#define MyAppURL "@PLUGIN_HOME_URL@"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
Expand Down
6 changes: 3 additions & 3 deletions src/plugin-macros.h.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Plugin Name
Copyright (C) <Year> <Developer> <Email Address>
@PLUGIN_PRETTY_NAME@
Copyright (C) 2021 @PLUGIN_AUTHOR@ @LINUX_MAINTAINER_EMAIL@

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -24,4 +24,4 @@ with this program. If not, see <https://www.gnu.org/licenses/>

#define blog(level, msg, ...) blog(level, "[" PLUGIN_NAME "] " msg, ##__VA_ARGS__)

#endif // PLUGINNAME_H
#endif // PLUGINNAME_H

0 comments on commit a4d365f

Please sign in to comment.